summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-12-05 20:52:13 +0100
committerLioncash <mathew1800@gmail.com>2022-12-05 21:19:37 +0100
commitdcca6505994898ae6ca1a5dc8ebd97c4d279968f (patch)
tree7a52c09680afeec95fac09ae5afa25578461749e
parentkernel/thread: Ensure stack_top and argument are always initialized (diff)
downloadyuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar
yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar.gz
yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar.bz2
yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar.lz
yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar.xz
yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.tar.zst
yuzu-dcca6505994898ae6ca1a5dc8ebd97c4d279968f.zip
-rw-r--r--src/core/hle/kernel/physical_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/physical_core.h b/src/core/hle/kernel/physical_core.h
index 2fc8d4be2..fb2ba4c6b 100644
--- a/src/core/hle/kernel/physical_core.h
+++ b/src/core/hle/kernel/physical_core.h
@@ -85,7 +85,7 @@ private:
std::mutex guard;
std::condition_variable on_interrupt;
std::unique_ptr<Core::ARM_Interface> arm_interface;
- bool is_interrupted;
+ bool is_interrupted{};
};
} // namespace Kernel